Babyplots is available through the babyplots python package to use in jupyter notebooks to visualize your data.
The babyplots python implementation is still in development, more features like exporting and publishing to the babyplots website are coming soon.
from babyplots import Babyplot
import pandas as pd
dat = pd.read_csv("E:/Dokumente/repos/mca_dt.txt", sep="\t")
dat.head()
coords = dat.iloc[:,0:3].values.tolist()
clusts = dat["Tissue"].values.tolist()
bp = Babyplot()
bp.add_plot(coords, "pointCloud", "categories", clusts, {"colorScale": "Paired"})
bp